home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 February / EnigmA AMIGA RUN 15 (1997)(G.R. Edizioni)(IT)[!][issue 1997-02][PLANET CD V].iso / enigma / earcd / emula / arosdv19.lha / AROS / BUGS < prev    next >
Text File  |  1996-10-19  |  2KB  |  72 lines

  1. BUG000001
  2. digulla@wi-pc44.fh-konstanz.de
  3. assign DEVS: devs -> ok
  4. list devs: -> ok
  5. list devs:nil.handler -> "List: Object is of wrong type"
  6.  
  7. BUG000002 fixed
  8. digulla@wi-pc44.fh-konstanz.de
  9. Workbench:> echo > test "Test"
  10. Couldn't run command: Object not found
  11. Workbench:> echo Test
  12. Test
  13. Workbench:>
  14. The problem was the space between ">" and "test". ReadItem() would now
  15. return "" for the filename and "test" as another parameter. Now I simply
  16. skip the ">" or "<" before I allow ReadItem() to process the filename.
  17.  
  18. BUG000003 fixed
  19. klaus21@t-online.de
  20. exec.library/RemTail() crashes on an empty list. It should return NULL.
  21. I wouldn't be too surprised if RemHead() crashes, too. ('Crash' means:
  22. Segmentation fault.)
  23. The problem was that GetTail() didn't return NULL for an empty list.
  24.  
  25. BUG000004
  26. klaus21@t-online.de
  27. The DosList structure found in AROS:include/dos/dosextens.h isn't
  28. compatible
  29. to the original (Amiga) one. The biggest problem: dol_Name is a STRPTR,
  30. but
  31. it should be a BSTR.
  32. (I wrote a program to show the currently mounted devices, and it took me
  33. some
  34. time to find out why I got those silly segfaults. BTW, the first
  35. DosList-entry has
  36. the name "(Null)", is this the list-head or does it have any special
  37. meaning (i.e.,
  38. is it a real device?)
  39.  
  40. BUG000005
  41. digulla@wi-pc44.fh-konstanz.de
  42. newshell crashes because
  43. Program received signal SIGSEGV, Segmentation fault.
  44. 0x8056535 in _Exec_DoIO (iORequest=0x80c1fe0, SysBase=0x806a290) at doio.c:67
  45. 67        __AROS_LVO_CALL1(void,5,iORequest->io_Device,iORequest,A1);
  46. io_Device is NULL
  47. #0  0x8056535 in _Exec_DoIO (iORequest=0x80c1fe0, SysBase=0x806a290)
  48.     at doio.c:67
  49. is called with ThisTask()->pr_CurrentDir.
  50. #1  0x80615a5 in DoName (iofs=0x80c1fe0, name=0x8063b74 "", DOSBase=0x806baa0)
  51.     at doname.c:90
  52. #2  0x805818d in _Dos_Lock (name=0x8063b74 "", accessMode=-2,
  53.     DOSBase=0x806baa0) at lock.c:103
  54. #3  0x8057159 in _Dos_DupLock (lock=33697770, DOSBase=0x806baa0)
  55.     at duplock.c:112
  56.  
  57. BUG000006
  58. klaus21@t-online.de
  59. "mount devs:ram.handler RAM:" does nothing. Afterwards, no RAM: or RAM::
  60. is available and no error is printed.
  61.  
  62. BUG000006
  63. klaus21@t-online.de
  64. "dir :" does nothing.
  65.  
  66. BUG000007
  67. digulla@wi-pc44.fh-konstanz.de
  68. forkbomb cannot be called from the shell (one has to cut&paste one of
  69. the lines of the script) and it runs only about 1000 times before it
  70. GURUs with AN_MemCorrupt (81000005). Does not happen every time, though :-/
  71.  
  72.